home *** CD-ROM | disk | FTP | other *** search
/ Everything For A Hacker / 19990506-[HACK].iso / HEXEDIT / BIED.1_0 / bied.exe / 0 / RCDATA / TFRMCREATE / TFRMCREATE.txt
Text File  |  1998-09-29  |  2KB  |  117 lines

  1. object FrmCreate: TFrmCreate
  2.   Left = 408
  3.   Top = 108
  4.   BorderStyle = bsDialog
  5.   Caption = 'Create new file'
  6.   ClientHeight = 105
  7.   ClientWidth = 186
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poDefault
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 71
  20.     Width = 186
  21.     Height = 34
  22.     Align = alBottom
  23.     BevelInner = bvRaised
  24.     BevelOuter = bvLowered
  25.     TabOrder = 0
  26.     object ButOK: TButton
  27.       Left = 16
  28.       Top = 5
  29.       Width = 75
  30.       Height = 25
  31.       Caption = '&OK'
  32.       Default = True
  33.       ModalResult = 1
  34.       TabOrder = 0
  35.     end
  36.     object ButCancel: TButton
  37.       Left = 96
  38.       Top = 5
  39.       Width = 75
  40.       Height = 25
  41.       Cancel = True
  42.       Caption = '&Cancel'
  43.       ModalResult = 2
  44.       TabOrder = 1
  45.     end
  46.   end
  47.   object Panel2: TPanel
  48.     Left = 0
  49.     Top = 0
  50.     Width = 186
  51.     Height = 71
  52.     Align = alClient
  53.     BevelInner = bvRaised
  54.     BevelOuter = bvLowered
  55.     TabOrder = 1
  56.     object Label1: TLabel
  57.       Left = 16
  58.       Top = 8
  59.       Width = 161
  60.       Height = 14
  61.       AutoSize = False
  62.       Caption = 'Create a new file by the size of'
  63.     end
  64.     object LblKb: TLabel
  65.       Left = 88
  66.       Top = 44
  67.       Width = 29
  68.       Height = 13
  69.       Caption = '(0 KB)'
  70.     end
  71.     object RbHex: TRadioButton
  72.       Left = 64
  73.       Top = 24
  74.       Width = 49
  75.       Height = 17
  76.       Caption = '&Hex'
  77.       TabOrder = 0
  78.       OnClick = RbHexClick
  79.     end
  80.     object RbDec: TRadioButton
  81.       Left = 16
  82.       Top = 24
  83.       Width = 49
  84.       Height = 17
  85.       Caption = '&Dec'
  86.       Checked = True
  87.       TabOrder = 1
  88.       TabStop = True
  89.       OnClick = RbDecClick
  90.     end
  91.     object NEdSize: TAKNumEdit
  92.       Left = 16
  93.       Top = 40
  94.       Width = 65
  95.       Height = 21
  96.       CharCase = ecUpperCase
  97.       TabOrder = 2
  98.       LeadingZero = False
  99.       Radix = 10
  100.       Value = 0
  101.       Version = '1.00'
  102.       OnChange = NEdSizeChange
  103.     end
  104.   end
  105.   object Storage: TFormStorage
  106.     IniSection = 'Create'
  107.     Options = []
  108.     OnRestorePlacement = StorageRestorePlacement
  109.     StoredProps.Strings = (
  110.       'RbDec.Checked'
  111.       'RbHex.Checked'
  112.       'NEdSize.Value')
  113.     Left = 8
  114.     Top = 64
  115.   end
  116. end
  117.